golang.org/x/net/http2.ClientConn.pings (field)

6 uses

	golang.org/x/net/http2 (current package)
		transport.go#L388: 	pings            map[[8]byte]chan struct{} // in flight ping data to notification channel
		transport.go#L839: 		pings:                       make(map[[8]byte]chan struct{}),
		transport.go#L2991: 		if _, found := cc.pings[p]; !found {
		transport.go#L2992: 			cc.pings[p] = c
		transport.go#L3032: 		if c, ok := cc.pings[f.Data]; ok {
		transport.go#L3034: 			delete(cc.pings, f.Data)